Partial<R>
定義
code:ts
type Partial<R> = {
P in keyof R?: RP;
};